home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / GEQTHack / Extras / SFXProcs.h < prev   
Encoding:
C/C++ Source or Header  |  1995-06-24  |  439 b   |  34 lines  |  [TEXT/MMCC]

  1. /*
  2.     SFXProcs.h
  3.     
  4.     Special effects for Graphic Elements
  5.     
  6.     Copyright 1994 by Al Evans. All rights reserved.
  7.     
  8.     6/9/94
  9.     
  10. */
  11.  
  12. #ifndef SFXPROCS
  13. #define SFXPROCS
  14.  
  15. #include "SFXCtrlr.h"
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. //Horizontal wipe
  22. pascal void SFXHWipe(SFXCtrlrPtr controller);
  23.  
  24. //Vertical wipe
  25. pascal void SFXVWipe(SFXCtrlrPtr controller);
  26.  
  27. //Blink
  28. pascal void SFXBlink(SFXCtrlrPtr controller);
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32.  
  33.  
  34. #endif